home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / RCS / truncate.c,v < prev    next >
Text File  |  1991-12-10  |  2KB  |  135 lines

  1. head     1.3;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.3.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.3
  10. date     91.09.12.23.38.50;  author mottsmth;  state Exp;
  11. branches 1.3.1.1;
  12. next     1.2;
  13.  
  14. 1.2
  15. date     88.07.29.17.41.05;  author ouster;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.06.19.14.32.09;  author ouster;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24. 1.3.1.1
  25. date     91.12.10.16.29.25;  author kupfer;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 1.3
  35. log
  36. @truncate was returning Sprite ReturnStatus, not Unix errno
  37. as it's supposed to.
  38. @
  39. text
  40. @/* 
  41.  * truncate.c --
  42.  *
  43.  *    Procedure to map from Unix truncate system call to Sprite system call.
  44.  *
  45.  * Copyright 1986 Regents of the University of California
  46.  * All rights reserved.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/truncate.c,v 1.2 88/07/29 17:41:05 ouster Exp Locker: mottsmth $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include "sprite.h"
  54.  
  55. #include "compatInt.h"
  56. #include <errno.h>
  57.  
  58.  
  59. /*
  60.  *----------------------------------------------------------------------
  61.  *
  62.  * truncate --
  63.  *
  64.  *    Procedure to map from Unix truncate system call to Sprite 
  65.  *    system call.
  66.  *
  67.  * Results:
  68.  *    UNIX_SUCCESS is returned, or
  69.  *      UNIX_ERROR with errno set appropriately.
  70.  *
  71.  * Side effects:
  72.  *    None.
  73.  *
  74.  *----------------------------------------------------------------------
  75.  */
  76.  
  77. int
  78. truncate(path, length)
  79.     char *path;
  80.     unsigned long length;
  81. {
  82.     ReturnStatus status = SUCCESS;
  83.  
  84.     status = Fs_Truncate(path, (int) length);
  85.     if (status == SUCCESS) {
  86.     return(UNIX_SUCCESS);
  87.     } else {
  88.     errno = Compat_MapCode(status);
  89.     return(UNIX_ERROR);
  90.     }
  91. }
  92. @
  93.  
  94.  
  95. 1.3.1.1
  96. log
  97. @Initial branch for Sprite server.
  98. @
  99. text
  100. @d11 1
  101. a11 1
  102. static char rcsid[] = "$Header: /sprite/src/lib/c/unixSyscall/RCS/truncate.c,v 1.3 91/09/12 23:38:50 mottsmth Exp $ SPRITE (Berkeley)";
  103. @
  104.  
  105.  
  106. 1.2
  107. log
  108. @Lint.
  109. @
  110. text
  111. @d11 1
  112. a11 1
  113. static char rcsid[] = "$Header: truncate.c,v 1.1 88/06/19 14:32:09 ouster Exp $ SPRITE (Berkeley)";
  114. d29 2
  115. a30 1
  116.  *    UNIX_SUCCESS is returned.
  117. d43 9
  118. a51 1
  119.     return(Fs_Truncate(path, (int) length));
  120. @
  121.  
  122.  
  123. 1.1
  124. log
  125. @Initial revision
  126. @
  127. text
  128. @d11 1
  129. a11 1
  130. static char rcsid[] = "$Header: sigsetmask.c,v 1.1 86/04/17 15:21:06 douglis Exp $ SPRITE (Berkeley)";
  131. d42 1
  132. a42 1
  133.     return(Fs_Truncate(path, length));
  134. @
  135.